#Starting the debugger
import pdb
pdb.set_trace()

#Debugging commands
help
help cont

#Palindrome debugging
#Copy palindrome into pyfund folder
#Open command prompt
#navigate to the pyfund folder 
#Run the debugger:
python -m pdb palindrome.py

#In the pdb
where
next
next

#Let's just run the code for a while
cont
#After letting the program run for a few seconds press Ctrl-C
#Where are we in the code?
list
#suppect infinite loop, return to running
r
#Press Ctrl-C. 
#Exit the debugger
quit